home *** CD-ROM | disk | FTP | other *** search
/ Champak 74 / Volume 74 My Disc - Damaged.iso / Games / remote_control.swf / scripts / DefineButton2_143 / BUTTONCONDACTION on(press).as
Text File  |  2008-08-08  |  500b  |  27 lines

  1. on(press){
  2.    _root.SFX.gotoAndPlay("Click");
  3.    var match = false;
  4.    var i = 0;
  5.    while(i < _root.cheatCodes.length)
  6.    {
  7.       var theCode = _root.cheatCodes[i];
  8.       if(_root.codeInput == theCode)
  9.       {
  10.          match = true;
  11.          break;
  12.       }
  13.       i++;
  14.    }
  15.    if(match == true)
  16.    {
  17.       _root.funcHITBOX("Valid_cheat_code_" + _root.codeInput);
  18.       gotoAndStop("Valid");
  19.       play();
  20.    }
  21.    else
  22.    {
  23.       gotoAndStop("Invalid");
  24.       play();
  25.    }
  26. }
  27.